home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 271_02 / i_dstr.doc < prev    next >
Text File  |  1987-08-18  |  1KB  |  38 lines

  1.  
  2.  
  3.  
  4.         NAME
  5.                 i_dstr -- make an integer from a decimal ascii string
  6.  
  7.         SYNOPSIS
  8.                 c = i_dstr(p, r);
  9.                 char *p;       destination string pointer
  10.                 int r;         integer to convert
  11.                 int c;         count of characters in string
  12.  
  13.  
  14.         DESCRIPTION
  15.         Convert an integer into an ascii decimal string (unsigned).
  16.         Range is that of 16 bits unsigned, or 0-65535.  The function
  17.         returns the number of characters placed in the string.  The string
  18.         is NULL terminated, and must be at least six bytes long to
  19.         accomodate the longest number plus the NULL.  Numbers are assumed
  20.         to be positive.
  21.  
  22.  
  23.         EXAMPLE
  24.  
  25.                char string[6];
  26.                int count;
  27.                count = i_dstr(string, 1357);
  28.                  count will equal 4
  29.                  string will be "1357\0"
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.         This function is found in SMTCx.LIB for the Turbo-C Compiler
  38.